/* ================= ROOT COLORS ================= */

:root {
    --blue: #1f5ea9;
    --red: #ef2026;
    --deep-blue: #03386b;
    --white: #ffffff;
}


/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    white-space: nowrap;
}

.top-bar i {
    margin-right: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
}


/* ================= NAVBAR ================= */

.navbar {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
    transition: 0.3s ease;
}

.navbar.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    animation: navbarDown 0.35s ease;
}

@keyframes navbarDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
}


/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #111;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}


/* ================= ORDER BUTTON ================= */

.order-btn {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.cart-icon {
    background: var(--red);
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.order-btn span:last-child {
    background: var(--blue);
    color: #fff;
    padding: 18px 30px;
    font-weight: 600;
}


/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--deep-blue);
}



/* =====================================
   CONTACT HERO SECTION
===================================== */

.contact-hero {
    position: relative;
    width: 100%;
    min-height: 465px;

    background-image: url("images/lazermachine.jpeg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* DARK BLUE GRADIENT OVERLAY */

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(4, 24, 47, 0.99) 0%,
        rgba(4, 24, 47, 0.96) 35%,
        rgba(4, 24, 47, 0.72) 58%,
        rgba(4, 24, 47, 0.15) 100%
    );
}


/* HERO CONTAINER */

.contact-hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1320px;

    margin: auto;
    padding: 70px 45px;
}


/* CONTENT */

.contact-hero-content {
    max-width: 650px;
}


/* SMALL TITLE */

.hero-small-title {
    display: block;

    margin-bottom: 15px;

    color: #ed1c2e;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


/* MAIN HEADING */

.contact-hero-content h1 {
    color: #ffffff;

    font-size: 52px;
    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 20px;
}

.contact-hero-content h1 span {
    color: #ed1c2e;
}


/* DESCRIPTION */

.hero-description {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 35px;
}


/* =====================================
   HERO FEATURES
===================================== */

.hero-features {
    display: flex;
    align-items: center;

    gap: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;

    gap: 12px;
}


/* ICON */

.hero-feature-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ed1c2e;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
}

.hero-feature-icon.blue {
    background: #0752a5;
}


/* FEATURE TEXT */

.hero-feature h4 {
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 4px;
}

.hero-feature p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;
}


/* =====================================
   HERO ANIMATION
===================================== */

.contact-hero-content {
    animation: heroContentShow 0.9s ease forwards;
}

@keyframes heroContentShow {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .contact-hero {
        min-height: 500px;
        background-position: 65% center;
    }

    .contact-hero-overlay {
        background: rgba(4, 24, 47, 0.88);
    }

    .contact-hero-container {
        padding: 70px 30px;
    }

    .contact-hero-content h1 {
        font-size: 45px;
    }

}


@media (max-width: 768px) {

    .contact-hero-content {
        max-width: 100%;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 25px;
    }

}


@media (max-width: 576px) {

    .contact-hero {
        min-height: 580px;
    }

    .contact-hero-container {
        padding: 60px 20px;
    }

    .contact-hero-content h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =====================================
   CONTACT METHODS SECTION
===================================== */

.contact-methods {
    width: 100%;
    padding: 55px 25px 65px;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 80, 170, 0.04),
            transparent 60%
        ),
        #f8f9fc;
}


.contact-method-container {
    max-width: 1250px;
    margin: auto;
}


/* =====================================
   SECTION HEADING
===================================== */

.contact-section-heading {
    text-align: center;

    margin-bottom: 35px;
}


.contact-section-heading > span {
    display: block;

    color: #ed1c2e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.5px;

    margin-bottom: 8px;
}


.contact-section-heading h2 {
    color: #07162b;

    font-size: 30px;
    font-weight: 800;

    line-height: 1.3;
}


.contact-section-heading h2 strong {
    color: #ed1c2e;
}


.heading-line {
    width: 50px;
    height: 3px;

    margin: 14px auto 0;

    background: #ed1c2e;

    border-radius: 10px;
}


/* =====================================
   CONTACT GRID
===================================== */

.contact-method-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}


/* =====================================
   CONTACT CARD
===================================== */

.contact-method-card {
    min-height: 260px;

    padding: 32px 15px 25px;

    background: #ffffff;

    border-radius: 12px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow:
        0 10px 30px rgba(7, 28, 54, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.contact-method-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(7, 28, 54, 0.15);
}


/* =====================================
   METHOD ICON
===================================== */

.method-icon {
    width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 27px;
    font-weight: 700;

    margin-bottom: 22px;

    transition: transform 0.35s ease;
}


.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}


.method-icon.red {
    background: #ed1c2e;
}


.method-icon.blue {
    background: #064b9f;
}


.method-icon.green {
    background: #14a536;
}


/* =====================================
   CARD TEXT
===================================== */

.contact-method-card h3 {
    color: #07162b;

    font-size: 14px;
    font-weight: 800;

    margin-bottom: 14px;
}


.contact-method-card p {
    color: #555e6d;

    font-size: 12px;
    line-height: 1.7;

    margin-bottom: 13px;
}


.contact-method-card a,
.contact-method-card span {
    font-size: 12px;
    font-weight: 800;

    line-height: 1.5;
}


.red-text {
    color: #ed1c2e;
}


.blue-text {
    color: #064b9f;
}


.green-text {
    color: #14a536;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1100px) {

    .contact-method-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 768px) {

    .contact-methods {
        padding: 50px 20px;
    }


    .contact-section-heading h2 {
        font-size: 26px;
    }


    .contact-method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .contact-method-grid {
        grid-template-columns: 1fr;
    }


    .contact-method-card {
        min-height: 240px;
    }

}


/* =====================================
   WHY CHOOSE US SECTION
===================================== */

.why-choose-us {
    width: 100%;
    padding: 65px 25px;

    background: #ffffff;
}


.why-container {
    max-width: 1250px;
    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr repeat(4, 1fr);

    align-items: center;
}


/* =====================================
   LEFT HEADING
===================================== */

.why-heading {
    padding-right: 35px;
}


.why-heading span {
    display: block;

    color: #ed1c2e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.6px;

    margin-bottom: 15px;
}


.why-heading h2 {
    color: #07162b;

    font-size: 29px;
    line-height: 1.3;

    font-weight: 800;
}


.why-heading h2 strong {
    color: #064b9f;
}


/* =====================================
   WHY ITEM
===================================== */

.why-item {
    min-height: 180px;

    padding: 10px 25px;

    text-align: center;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-left: 1px solid #d9dee7;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.why-item:hover {
    transform: translateY(-7px);

    background: #f8faff;
}


/* =====================================
   ICON
===================================== */

.why-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    color: #07162b;

    font-size: 46px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.why-item:hover .why-icon {
    color: #ed1c2e;

    transform: scale(1.08);
}


/* =====================================
   TEXT
===================================== */

.why-item h3 {
    color: #07162b;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 10px;
}


.why-item p {
    color: #5d6470;

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1050px) {

    .why-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    .why-heading {
        grid-column: 1 / -1;

        text-align: center;

        padding-right: 0;

        margin-bottom: 20px;
    }


    .why-item {
        border: 1px solid #e1e5eb;

        border-radius: 10px;

        background: #ffffff;

        box-shadow:
            0 8px 25px rgba(7, 28, 54, 0.05);
    }

}


@media (max-width: 576px) {

    .why-choose-us {
        padding: 50px 20px;
    }


    .why-container {
        grid-template-columns: 1fr;
    }


    .why-heading h2 {
        font-size: 25px;
    }


    .why-item {
        min-height: 200px;
    }

}


/* =====================================
   MESSAGE SECTION
===================================== */

.message-section {
    width: 100%;
    padding: 30px 25px 65px;
    background: #ffffff;
}

.message-container {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* =====================================
   CONTACT FORM BOX
===================================== */

.contact-form-box {
    min-height: 500px;

    padding: 32px 25px;

    background: linear-gradient(
        135deg,
        #071d3a,
        #03295b
    );

    border-radius: 13px;

    box-shadow: 0 15px 35px rgba(5, 27, 55, 0.15);
}

.contact-form-box h2 {
    color: #ffffff;

    font-size: 21px;
    font-weight: 800;

    margin-bottom: 12px;
}

.form-title-line {
    width: 40px;
    height: 3px;

    background: #ed1c2e;

    margin-bottom: 25px;

    border-radius: 10px;
}


/* =====================================
   FORM
===================================== */

.contact-form-box form {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;

    padding: 15px 14px;

    border: 2px solid transparent;
    outline: none;

    border-radius: 7px;

    background: #ffffff;

    color: #07162b;

    font-family: inherit;
    font-size: 12px;

    transition: 0.3s ease;
}

.contact-form-box textarea {
    resize: none;
    min-height: 130px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #ed1c2e;

    box-shadow: 0 0 0 3px rgba(237, 28, 46, 0.15);
}


/* =====================================
   SEND BUTTON
===================================== */

.send-message-btn {
    width: 68%;

    padding: 15px 25px;

    border: none;
    border-radius: 6px;

    background: #ed1c2e;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;
}

.send-message-btn i {
    margin-left: 5px;
}

.send-message-btn:hover {
    background: #ffffff;
    color: #ed1c2e;

    transform: translateY(-2px);
}


/* SUCCESS MESSAGE */

.form-success {
    display: none;

    margin-top: 15px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}


/* =====================================
   OFFICE IMAGE
===================================== */

.office-image-box {
    position: relative;

    min-height: 500px;

    border-radius: 13px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(5, 27, 55, 0.12);
}

.office-image-box > img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.office-image-box:hover > img {
    transform: scale(1.05);
}


/* IMAGE OVERLAY */

.office-image-box::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3, 21, 42, 0.18),
        transparent
    );
}


/* =====================================
   OFFICE INFO CARD
===================================== */

.office-info-card {
    position: absolute;

    z-index: 3;

    left: 30px;
    bottom: 20px;

    width: 290px;

    padding: 25px 23px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.office-info-card::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 25px;

    width: 20px;
    height: 20px;

    background: #ed1c2e;

    border-radius: 50%;
}

.office-small-title {
    display: block;

    color: #ed1c2e;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 17px;
}

.office-info-card ul {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 20px;
}

.office-info-card li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #273244;

    font-size: 11px;
    line-height: 1.5;
}

.office-info-card li i {
    width: 15px;

    color: #07162b;

    font-size: 12px;
}


/* =====================================
   MAP BUTTON
===================================== */

.view-map-btn {
    width: 100%;

    padding: 12px;

    display: block;

    background: #064b9f;

    color: #ffffff;

    text-align: center;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 800;

    transition: 0.3s ease;
}

.view-map-btn:hover {
    background: #ed1c2e;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .message-container {
        grid-template-columns: 1fr;
    }

    .office-image-box {
        min-height: 550px;
    }

}


@media (max-width: 576px) {

    .message-section {
        padding: 25px 15px 50px;
    }

    .contact-form-box {
        padding: 28px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .send-message-btn {
        width: 100%;
    }

    .office-image-box {
        min-height: 500px;
    }

    .office-info-card {
        left: 15px;
        right: 15px;
        bottom: 15px;

        width: auto;
    }

}


/* =====================================
   RECENT WORK SECTION
===================================== */

.recent-work-section {
    width: 100%;
    padding: 60px 25px 70px;

    background: #f7f9fc;
}


.recent-work-container {
    max-width: 1250px;
    margin: auto;
}


/* =====================================
   HEADING
===================================== */

.recent-work-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}


.recent-work-heading span {
    display: block;

    color: #ed1c2e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.6px;

    margin-bottom: 8px;
}


.recent-work-heading h2 {
    color: #07162b;

    font-size: 30px;
    font-weight: 800;
}


.recent-work-heading h2 strong {
    color: #064b9f;
}


/* =====================================
   VIEW GALLERY BUTTON
===================================== */

.view-gallery-btn {
    padding: 13px 22px;

    border-radius: 5px;

    background: #064b9f;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    transition: 0.3s ease;
}


.view-gallery-btn i {
    margin-left: 7px;
}


.view-gallery-btn:hover {
    background: #ed1c2e;

    transform: translateY(-2px);
}


/* =====================================
   GALLERY GRID
===================================== */

.recent-work-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


/* =====================================
   GALLERY ITEM
===================================== */

.recent-work-item {
    position: relative;

    height: 220px;

    border-radius: 8px;

    overflow: hidden;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(7, 28, 54, 0.08);
}


.recent-work-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.recent-work-item:hover img {
    transform: scale(1.1);
}


/* =====================================
   IMAGE OVERLAY
===================================== */

.work-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(4, 28, 58, 0.7);

    opacity: 0;

    transition: opacity 0.35s ease;
}


.recent-work-item:hover .work-overlay {
    opacity: 1;
}


.work-overlay i {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ed1c2e;
    color: #ffffff;

    font-size: 18px;

    transform: scale(0);

    transition: transform 0.35s ease;
}


.recent-work-item:hover .work-overlay i {
    transform: scale(1);
}


/* =====================================
   LIGHTBOX
===================================== */

.work-lightbox {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(2, 12, 26, 0.94);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}


.work-lightbox.active {
    opacity: 1;
    visibility: visible;
}


.work-lightbox img {
    display: block;

    max-width: 90%;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 8px;

    transform: scale(0.8);

    transition: transform 0.3s ease;
}


.work-lightbox.active img {
    transform: scale(1);
}


/* CLOSE BUTTON */

.work-lightbox-close {
    position: absolute;

    top: 25px;
    right: 35px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #ed1c2e;
    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s ease;
}


.work-lightbox-close:hover {
    transform: rotate(90deg);
    background: #ffffff;
    color: #ed1c2e;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .recent-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .recent-work-section {
        padding: 50px 15px;
    }


    .recent-work-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }


    .recent-work-heading h2 {
        font-size: 25px;
    }


    .recent-work-grid {
        grid-template-columns: 1fr;
    }


    .recent-work-item {
        height: 250px;
    }


    .work-lightbox {
        padding: 20px;
    }


    .work-lightbox img {
        max-width: 100%;
    }


    .work-lightbox-close {
        top: 15px;
        right: 15px;
    }

}


/* =====================================
   LOCATION SECTION
===================================== */

.location-section {
    width: 100%;
    padding: 60px 25px 70px;

    background: #ffffff;
}


.location-container {
    max-width: 1250px;
    margin: auto;
}


/* =====================================
   LOCATION HEADING
===================================== */

.location-heading {
    text-align: center;

    margin-bottom: 30px;
}


.location-heading > span {
    display: block;

    color: #ed1c2e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.6px;

    margin-bottom: 8px;
}


.location-heading h2 {
    color: #07162b;

    font-size: 30px;
    font-weight: 800;
}


.location-heading h2 strong {
    color: #064b9f;
}


.location-line {
    width: 45px;
    height: 3px;

    margin: 13px auto 0;

    background: #ed1c2e;

    border-radius: 10px;
}


/* =====================================
   MAP
===================================== */

.map-wrapper {
    position: relative;

    width: 100%;
    height: 390px;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(7, 28, 54, 0.12);
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: none;

    display: block;
}


/* =====================================
   MAP LOCATION CARD
===================================== */

.map-location-card {
    position: absolute;

    left: 35px;
    top: 50%;

    transform: translateY(-50%);

    width: 330px;

    padding: 25px;

    display: flex;
    align-items: flex-start;

    gap: 17px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


/* =====================================
   LOCATION ICON
===================================== */

.map-card-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ed1c2e;
    color: #ffffff;

    font-size: 22px;
}


/* =====================================
   CARD CONTENT
===================================== */

.map-card-content > span {
    display: block;

    color: #ed1c2e;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.6px;

    margin-bottom: 7px;
}


.map-card-content h3 {
    color: #07162b;

    font-size: 17px;
    font-weight: 800;

    margin-bottom: 8px;
}


.map-card-content p {
    color: #626b78;

    font-size: 11px;
    line-height: 1.6;

    margin-bottom: 15px;
}


/* =====================================
   DIRECTION BUTTON
===================================== */

.direction-btn {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 10px 15px;

    border-radius: 5px;

    background: #064b9f;
    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    transition: 0.3s ease;
}


.direction-btn:hover {
    background: #ed1c2e;

    transform: translateY(-2px);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {

    .map-wrapper {
        height: 500px;
    }


    .map-location-card {
        left: 20px;
        right: 20px;

        top: auto;
        bottom: 20px;

        transform: none;

        width: auto;
    }

}


@media (max-width: 500px) {

    .location-section {
        padding: 50px 15px;
    }


    .location-heading h2 {
        font-size: 26px;
    }


    .map-wrapper {
        height: 520px;
    }


    .map-location-card {
        padding: 20px 15px;

        gap: 12px;
    }


    .map-card-icon {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }


    .map-card-content h3 {
        font-size: 15px;
    }

}


/* =====================================
   PROJECT CTA SECTION
===================================== */

.project-cta {
    position: relative;

    width: 100%;
    min-height: 210px;

    display: flex;
    align-items: center;

    background: linear-gradient(
        105deg,
        #071d3a 0%,
        #062b5b 62%,
        #ed1c2e 62%,
        #c90f20 100%
    );

    overflow: hidden;
}


/* =====================================
   BACKGROUND DECORATION
===================================== */

.project-cta::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -120px;
    top: -150px;

    border: 45px solid rgba(255, 255, 255, 0.03);

    border-radius: 50%;
}


.project-cta::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    bottom: -170px;

    border: 35px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


/* DECORATIVE SHAPES */

.project-cta-shape {
    position: absolute;

    pointer-events: none;
}


.shape-one {
    top: 0;
    left: 55%;

    width: 130px;
    height: 100%;

    background: rgba(255, 255, 255, 0.025);

    transform: skewX(-25deg);
}


.shape-two {
    left: 30%;
    bottom: -60px;

    width: 150px;
    height: 150px;

    border: 25px solid rgba(255, 255, 255, 0.025);

    border-radius: 50%;
}


/* =====================================
   CTA CONTAINER
===================================== */

.project-cta-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1250px;

    margin: auto;
    padding: 45px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =====================================
   CTA CONTENT
===================================== */

.project-cta-content > span {
    display: block;

    color: #ed1c2e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 10px;
}


.project-cta-content h2 {
    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 800;

    margin-bottom: 8px;
}


.project-cta-content p {
    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;
    line-height: 1.6;
}


/* =====================================
   CALL BUTTON
===================================== */

.cta-call-btn {
    min-width: 285px;

    padding: 13px 25px 13px 13px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cta-call-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25);
}


/* PHONE ICON */

.cta-phone-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #ed1c2e;
    color: #ffffff;

    font-size: 19px;

    transition: 0.3s ease;
}


.cta-call-btn:hover .cta-phone-icon {
    background: #064b9f;

    transform: rotate(-8deg);
}


/* CALL TEXT */

.cta-call-text {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.cta-call-text span {
    color: #687180;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


.cta-call-text strong {
    color: #07162b;

    font-size: 18px;
    font-weight: 800;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {

    .project-cta {
        background: linear-gradient(
            160deg,
            #071d3a 0%,
            #062b5b 65%,
            #ed1c2e 65%,
            #c90f20 100%
        );
    }


    .project-cta-container {
        padding: 55px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .project-cta-content h2 {
        font-size: 29px;
    }


    .cta-call-btn {
        min-width: 300px;
    }

}


@media (max-width: 400px) {

    .project-cta-container {
        padding: 50px 18px;
    }


    .project-cta-content h2 {
        font-size: 25px;
    }


    .project-cta-content p {
        font-size: 13px;
    }


    .cta-call-btn {
        width: 100%;
        min-width: 0;

        padding-right: 15px;
    }


    .cta-call-text strong {
        font-size: 15px;
    }

}



/* ================= FOOTER ================= */

.footer {
    background:
        linear-gradient(
            110deg,
            #06467f,
            #033664
        );

    color: #fff;

    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr repeat(4, 1fr);

    gap: 35px;
}

.footer-logo img {
    width: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;

    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    background: #fff;
    color: var(--blue);

    border-radius: 50%;

    display: grid;
    place-items: center;

    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-column {
    padding-left: 30px;

    border-left:
        1px solid rgba(255, 255, 255, 0.25);
}

.footer-column h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 14px;

    margin-bottom: 20px;

    position: relative;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 30px;
    height: 2px;

    background: var(--red);
}

.footer-column a {
    display: block;

    color: #fff;

    font-size: 13px;

    margin-bottom: 11px;

    transition: 0.3s;
}

.footer-column a:hover,
.footer-column .footer-active {
    color: var(--red);
}

.contact-column p {
    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-column i {
    margin-right: 8px;
}


/* ================= COPYRIGHT ================= */

.copyright {
    border-top:
        1px solid rgba(255, 255, 255, 0.25);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    font-size: 12px;

    color: #ccd9e7;
}

.copyright span {
    color: var(--red);

    margin-left: 15px;
}


/* ================= RESPONSIVE 1100 ================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ================= RESPONSIVE 800 ================= */

@media (max-width: 800px) {

    .top-right span {
        display: none;
    }


    /* MOBILE NAV */

    .navbar .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        order: 3;
    }

    .nav-links {
        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px;

        text-align: center;
    }

    .order-btn {
        margin-left: auto;
        margin-right: 15px;
    }


    /* HERO */

    .hero-content {
        flex-direction: column;

        padding: 60px 0;
    }

    .hero-text,
    .hero-collage {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-collage {
        margin-top: 30px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gallery-item img {
        height: 330px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 70px 70px;
    }

    .lightbox img {
        max-width: 100%;
    }


    /* VIDEO */

    .video-wrapper {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ================= RESPONSIVE 550 ================= */

@media (max-width: 550px) {

    .top-bar .container {
        justify-content: center;
    }

    .top-right {
        display: none;
    }

    .logo img {
        width: 80px;
    }

    .order-btn span:last-child {
        padding: 14px 15px;

        font-size: 12px;
    }

    .cart-icon {
        width: 45px;
        height: 45px;
    }


    /* HERO */

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-collage {
        height: 300px;
    }

    .hero-img {
        transform: none !important;
    }

    .img-one {
        left: 0;

        width: 45%;
    }

    .img-two {
        left: 45%;

        width: 45%;
    }

    .img-three {
        display: none;
    }

    .img-four {
        left: 25%;

        width: 50%;
    }


    /* TITLE */

    .section-title h2 {
        text-align: center;

        font-size: 20px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 420px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding:
            70px 15px
            90px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 75vh;

        border-radius: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;

        top: auto;
        bottom: 20px;

        transform: none;
    }

    .lightbox-prev {
        left: calc(50% - 65px);
    }

    .lightbox-next {
        right: calc(50% - 65px);
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.08);
    }

    .lightbox-close {
        width: 45px;
        height: 45px;

        top: 15px;
        right: 15px;
    }


    /* VIDEO */

    .video-image {
        height: 260px;
    }

    .video-content h2 {
        font-size: 34px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        padding-left: 0;

        border-left: none;
    }

}
